home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / database / hl / hl-1.002 / hl-1 / PrintLabels / makefile.osk < prev    next >
Encoding:
Makefile  |  1995-04-15  |  633 b   |  23 lines

  1. CPP = gcc2 -Fcc2pluss200 #200 -Fcccp2s200
  2. CFLAGS = -I../Include -gg -c
  3. ODIR = ../CMDS
  4. PROGRAM = PrintLabels
  5. LFLAGS = -gg -l../Lib/libr.l -lgpp000 -liostream000 -lgcc -los9lib.l  -s 30 -v
  6.  
  7. SRCS = PrintLabels.cc
  8.  
  9. OBJS = PrintLabels.r
  10.  
  11. $(ODIR)/$(PROGRAM) : $(OBJS) ../Lib/libr.l
  12.     $(CPP) $(LFLAGS) $(OBJS) -o $(ODIR)/$(PROGRAM) 
  13.  
  14. PrintLabels.r : PrintLabels.cc PrintLabels.h ../Include/common.h \
  15.         ../Include/vm.h ../Include/vBTree.h \
  16.         ../Include/Card.h ../Include/CardRecord.h \
  17.         ../Include/ListRecord.h ../Include/PTree.h
  18.         $(CPP) $(CFLAGS) PrintLabels.cc -o PrintLabels.r
  19.  
  20. PrintLabels.h : PrintLabels.arg
  21.     makeargprc PrintLabels
  22.  
  23.